home *** CD-ROM | disk | FTP | other *** search
- # Makefile for Atari ST TOS
- # This ST version of wanderer was compiled using the GNU C compiler, v1.37.1.
- # bjr@watserv1.waterloo.edu, jun 27/90
-
- OBJ = monsters.o m.o save.o jump.o display.o icon.o game.o read.o help.o fall.o scores.o edit.o encrypt.o
-
- CFLAGS = -O -fomit-frame-pointer -fcombine-regs -DTOS -DLINT_ARGS
- CFLAGS2 = -O -fomit-frame-pointer -fcombine-regs -DTOS
- LIBS = -lcurses
- CC = gcc
-
- all: wanderer password convert
- @echo DONE
-
- wanderer: $(OBJ)
- $(CC) $(CFLAGS) -o wanderer.ttp $(OBJ) $(LIBS)
-
- convert: convert.c wand_head.h
- $(CC) $(CFLAGS2) -o convert.ttp convert.c
-
- password: password.c wand_head.h
- $(CC) $(CFLAGS) -o password.ttp password.c
-
- $(OBJ): wand_head.h
-